home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 271_02 / vmode.doc < prev    next >
Text File  |  1987-08-18  |  616b  |  38 lines

  1.  
  2.  
  3.  
  4.         NAME
  5.                 vmode -- set video mode
  6.  
  7.         SYNOPSIS
  8.                 void vmode(mode);
  9.                 int mode;
  10.  
  11.  
  12.         DESCRIPTION
  13.         This function sets the video mode from 0 - 7.  Modes are
  14.         as specified in the DOS manual.  The most common is
  15.         Black & White 80 column mode, which is mode 2.
  16.         This library package includes screen.h which defines
  17.         video modes.
  18.  
  19.  
  20.  
  21.         EXAMPLE
  22.              #include <screen.h>
  23.              vmode(BW80);
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.         This function is found in SMTCx.LIB for the Turbo-C Compiler
  38.